From: Stefan Kangas Date: Sun, 2 Mar 2025 03:11:55 +0000 (+0100) Subject: ; Improve docstring of cl-check-type X-Git-Tag: archive/raspbian/1%30.2+1-2+rpi1^2~2^2~24^2~242 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success/%22http:/www.example.com/cgi/success?a=commitdiff_plain;h=38cc36a375344d2518eb8f9d3e0e6943199da529;p=emacs.git ; Improve docstring of cl-check-type * lisp/emacs-lisp/cl-macs.el (cl-check-type): Improve docstring. --- diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 555b4f018ad..99c105c7559 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -3548,7 +3548,10 @@ Of course, we really can't know that for sure, so it's just a heuristic." ;;;###autoload (defmacro cl-check-type (form type &optional string) "Verify that FORM is of type TYPE; signal an error if not. -STRING is an optional description of the desired type." +STRING is an optional description of the desired type. + +Hint: To check the type of an object, use `cl-type-of'. +To define new types, see `cl-deftype'." (declare (debug (place cl-type-spec &optional stringp))) (and (or (not (macroexp-compiling-p)) (< cl--optimize-speed 3) (= cl--optimize-safety 3))